5e37d1122f0e67cfba71fc59de2f229e4e73b7ea,src/main/java/org/jtrfp/trcl/obj/ProjectileFactory.java,ProjectileFactory,fire,#number[]#Vector3D#WorldObject#boolean#SoundTexture#,187

Before Change


	if(weapon.isSumWithProjectorVel() && sumWithProjectorVel){
	    Vector3D originVelocity = Vector3D.ZERO;
	    try{final Velocible vel = objectOfOrigin.probeForBehavior(Velocible.class);
	    originVelocity = vel.getVelocity();
	    }catch(BehaviorNotFoundException e){}
	    newVelocity = heading.scalarMultiply(projectileSpeed).add(originVelocity);
	}else// !sumWithProjector

After Change


	if(weapon.isSumWithProjectorVel() && sumWithProjectorVel){
	    Vector3D originVelocity = Vector3D.ZERO;
	    try{final Velocible vel = objectOfOrigin.probeForBehavior(Velocible.class);
	    originVelocity = new Vector3D(vel.getVelocity());
	    }catch(BehaviorNotFoundException e){}
	    newVelocity = heading.scalarMultiply(projectileSpeed).add(originVelocity);
	}else// !sumWithProjector